home *** CD-ROM | disk | FTP | other *** search
/ Sun Solutions 1997 April to September / Sun Solutions CD - APR '97 - SEP '97 (704-3778-12 Rev. H)(Sun Microsystems, Inc.)(1997).iso / products / SCO / _install / install next >
Text File  |  1997-02-25  |  1KB  |  42 lines

  1. #!/bin/sh
  2. #    Installation shell script for Catalyst CDware
  3. #
  4. #     Usage: install_unbundled -m<mountpoint> -p<productpath>
  5. #
  6. #    Created:     June 12, 1991
  7. #    Last Revised:     May 23, 1994
  8. #
  9. #    Use this installation script to install your product from Catalyst CDware
  10. #
  11. #
  12. #    For technical support, please call.
  13. #        +1 415 336.3742 (CDware SPARC) or +1 415 336.3941 (CDware x86)
  14. #
  15. #    get command line parameters
  16. #
  17. COMPANY_DIR=$PRODUCT_DIR/SCO
  18. export COMPANY_DIR
  19. echo ""
  20. echo "Which Software would you like to install?"
  21. echo ""
  22. echo "1) VisionFS"
  23. echo ""
  24. echo "2) XVision Eclipse"
  25. echo ""
  26. echo "Enter a number:"
  27.  
  28.   while :
  29.   do
  30.     read Ans
  31.     case $Ans in
  32.       1)     $COMPANY_DIR/_install/install_unbundled1; break ;;
  33.       2)     echo ""; echo "";echo "Please refer to the installation instructions to install the  PC component of this software.  The UNIX portion is now installing...";sleep 5;$COMPANY_DIR/_install/install_unbundled2; break ;;
  34.     esac
  35.   done
  36.  
  37.  
  38. echo ""
  39. echo " Hit return to end ..."
  40. read x
  41. exit 0
  42.